@charset "UTF-8";
:root {
    --inquiry-height:40px;
    --menu-height: 110px;
    --theme-color: #007e35;
    --yellow-color: #f2c818;
    --border-color: rgba(0,0,0,0.03);
    --bg-color:#f1f1f1;
    --shadow-color:#cbcbcb;
}

.vr{
    background-color:var(--border-color) !important;
    opacity: 1;
}
html, body {
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    background-color:var(--bg-color);
}

html, body, ul, li, p {
    margin: 0;
    padding: 0;
}

* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.line-height-1-5 {
    line-height: 1.5;
}


.color-black {
    color: #000000;
}

.color-333 {
    color: #333333;
}

.color-theme {
    color: var(--theme-color);
}

.moveup {
    display: inline-block;
    transition: All 0.2s ease-in-out;
}

.moveup:hover {
    transform: translate(0, -5px);
}

.moveleft {
    display: inline-block;
    transition: All 0.2s ease-in-out;
}

.moveleft:hover {
    transform: translate(-5px, 0);
}

.moveright {
    display: inline-block;
    transition: All 0.2s ease-in-out;
}

.moveright:hover {
    transform: translate(5px, 0);
}

.font-16 {
    font-size: 16px;
}

.font-40 {
    font-size: 40px;
}
html,body,head,div,span,ul,p{
    box-sizing: border-box;
}
a {
    text-decoration: none;
    box-sizing: border-box;
}

li {
    list-style: none;
}
/*头部SEO*/
.top-seo-bar{
    border:1px solid var(--border-color);
    background-color: #ffffff;
    height:var(--inquiry-height);
    overflow: hidden;
    box-sizing: border-box;
}
.top-seo-bar >*{
    font-size:14px;
    color:#333333;
    line-height: var(--inquiry-height);
}
.top-seo-bar .top-seo{
    width:0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    word-break: break-all;
}
/*面包屑导航*/
.breadcrumb{
    color:#333333;
    font-size:16px;
    padding:10px 0;
    line-height: 30px;
}
.breadcrumb .b-addr{zha
    display:inline-block;
    color:#000000;
    font-size:16px;
    line-height: 30px;
}
.breadcrumb > a{
    display:inline-block;
    color:#333333;
    font-size:16px;
    margin:0 10px;
    line-height: 30px;
}
.breadcrumb > a:hover{
    color:var(--theme-color);
}

/*头部*/
.top {
    box-sizing: border-box;
    position:relative;
    height: var(--menu-height);
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    z-index:10;
}

.top .logo {
    width: 200px;
    height: 79px;
    object-fit: contain;
}

.top .vr {
    height: 57px;
	align-self:unset;
}

.top .slogan {
    white-space: nowrap;
}

.top .slogan-item {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 28px;
    letter-spacing: 2px;
    color: #000000;
    display: block;
}
.top-right .menu > .menu-item:hover{
    background-color:var(--theme-color);
}
.top-right .menu > .menu-item:hover > a{
    color:#ffffff;
}

.top-right .menu > .menu-item > a {

    height: var(--menu-height);
    line-height: var(--menu-height);
}

.top-right .menu .menu-item:hover .second-menu {
    display: block;
}

.top .second-menu {
    position: absolute;
    left: 0;
    top: var(--menu-height);
    display: none;
    background-color: rgba(255, 255, 255, 0.9);
    padding:10px 0 20px;
    z-index: 1;
}

.top .second-menu ul{
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
}


.top .menu-item {
    position: relative;
    padding: 0 30px;
}

.top .menu-item a {
    font-size: 16px;
    text-align: center;
    color: #333333;
    display: block;;
    white-space: nowrap;
    line-height: 48px;
}
.top .second-menu .menu-item{
    min-width: 125px;
    padding:10px 0;
}
.top .second-menu .menu-item:not(:last-child){
    border-bottom:1px dashed var(--border-color);
}
.top .second-menu .menu-item:hover{
    background-color:rgba(0,0,0,0.1);
}
.top .second-menu .menu-item:hover > a{
    color:var(--theme-color);
}

.top .search-box {
    width: 100px;
    height: var(--menu-height);
}

.top .search-form {
    display: inline-block;
    width: 100%;
}

.top .search-form:hover .search-key {
    display: block;
}

.top .search-form .search-btn{
    width:20px;
    height:20px;
    object-fit: contain;
}

.top .search-key {
    right: 70px;
    width: 200px;
    display: none;
}

/*热搜关键词*/
.hot-search-bar{
    background:#ffffff;
    height:110px;
}
.hot-search-bar .lb{
    font-size:16px;
    font-weight: bold;
    color:#000000;
}
.hot-search-bar  a{
    font-size:16px;
    color:#000000;
    display: inline-block;
    margin-left:20px;
}
.hot-search-bar form{
    display: block;
    border:1px solid var(--border-color);
    height:45px;
    width:400px;
    flex-basis: 400px;
    padding:0 20px;
    border-radius: 45px;
    overflow: hidden;
}
.hot-search-bar input,.hot-search-bar input:active{
    border:none;
    outline: none;
}
.hot-search-bar .search-input{
    width:0;
    font-size:16px;
    color:#000000;
}
.hot-search-bar .search-btn{
    width:20px;
    height:20px;
    object-fit: contain;
}
/*轮播图*/
.swiper {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide .container, .swiper-slide .container > * {
    height: 100%;
}

.first-level-container {
    display: none;
    padding-top: calc( var(--inquiry-height) + var(--menu-height) );
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n+1) {
    background-color: #FFFFFF;
    padding-top: calc( var(--inquiry-height) + var(--menu-height) );
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n+2) {
    background-image: url("../images/full_1.jpg");
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n+3) {
    background-image: linear-gradient(0deg,
    #f2cb19 0%,
    #f49c0a 100%);
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n+4) {
    background-image: url("../images/full_3.jpg");
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n+5) {
    background-image: url("../images/full_4.jpg");
}

.full-swiper > .swiper-wrapper > .swiper-slide:nth-child(6n) {
    background-image: url("../images/full_5.jpg");
}


.full-swiper-pagination{
    top:595px !important;
}
.full-swiper-pagination > .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
    opacity: 1;
    background-color: rgba(0, 126, 53, 0.8);
}

.full-swiper-pagination > .swiper-pagination-bullet-active {
    color: #FFFFFF;
    background-color: var(--yellow-color);
}



.home-about-us {
    width: 570px;
}

.home-about-us .header img {
    width: 151px;
    height: 88px;
    object-fit: contain;
}

.home-about-us-content {
    font-size: 16px;
    line-height: 40px;
    color: #333333;
    margin: 40px 0 35px;
    height: calc(4 * 40px);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}

.home-about-more {
    display: inline-block;
    width: 150px;
    height: 54px;
    font-size: 16px;
    line-height: 54px;
    text-align: center;
    color: #333333;
    border: 1px solid #a1a1a1;
    box-shadow: 4px 4px 1px 1px #a1a1a1;
}

.about-us-pane {
    margin-top: 60px;
}

.about-us-box:not(:last-child) {
    margin-right: 58px;
}

.about-us-num {
    display: inline-block;
    font-size: 50px;
    font-weight: bold;
    color: #000000;
    line-height: 68px;
}

.about-us-unit {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.about-us-box-bottom {
    font-size: 16px;
    color: #333333;
    text-align: center;
}

.home-slide-header {
    animation-delay: 1s;
    animation: slideInDown;
    animation-duration: 1s;
}

.home-slide-header .title {
    width: 584px;
    background-image: url("../images/header_bg_black.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-size: 38px;
    line-height: 45px;
    letter-spacing: 3px;
    text-align: center;
    font-weight: bold;
    color: #000000;
}

.home-slide-header .sub-title {
    font-size: 16px;
    letter-spacing: 5px;
    color: #000000;
    line-height: 30px;
}

.home-slide-header.header-bg-white .title {
    background-image: url("../images/header_bg.png");
    color: #ffffff;
}

.home-slide-header.header-bg-white .sub-title {
    color: #ffffff;
}

.home-slide-content {
    margin-top: 20px;
    width: 100%;

}

.home-slide-content .pro-props-pane {
    animation-delay: 0.8s;
    animation: fadeInUpBig;
    animation-duration: 2s;
}

.home-slide-content .pro-showcase {
    animation-delay: 1.1s;
    animation: fadeInUpBig;
    animation-duration: 2s;
}

.home-slide-content .pro-item {
    width: 234px;
    height: 87px;
    border-radius: 87px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 10px 27px 3px rgba(12, 3, 6, 0.27);
}


.home-slide-content .pro-item .pro-icon {
    width: 64px;
    height: 64px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-right: 5px;
    font-stretch: normal;
    line-height: 64px;
    letter-spacing: 0px;
    color: var(--theme-color);
    border-radius: 64px;
    overflow: hidden;
    border: 1px solid #000000;
    transition: transform 2s;
    cursor: pointer;
}

.home-slide-content .pro-item .pro-icon:hover {
    transform: rotateY(360deg);
}

.home-slide-content .pro-item .pro-item-att {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: 0px;
    width: 0;
    color: #000000;
    word-break: break-all;
}

.home-slide-content .pro-showcase {
    position: relative;
    margin-top: 30px;
}

.swiper-third-prev-btn.swiper-button-prev {
    left: -50px !important;
    opacity: 1;
    color: var(--theme-color);
}

.swiper-third-next-btn.swiper-button-next {
    right: -50px !important;
    opacity: 1;
    color: var(--theme-color);
}

.swiper-third-next-btn.swiper-button-disabled, .swiper-third-prev-btn.swiper-button-disabled {
    color: #FFFFFF !important;
    opacity: 1 !important;
}

.home-slide-content .pro-showcase-item {
    display:block;
    width:100%;
    height:100%;
    background-color: #ffffff;
}

.home-slide-content .pro-showcase-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.home-slide-content .pro-showcase-item .showcase-item-tt {
    position: relative;
    display: block;
    color: #000000;
    font-size: 16px;
    line-height: 57px;
    margin-top: 16px;
    height: 57px;
    text-align: center;
}

.home-slide-content .pro-showcase-item .showcase-item-tt:after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    z-index: 1;
    border-top: 1px dashed var(--border-color);
}

.home-slide-content .pro-showcase-item:hover {
    background-color: var(--theme-color);
}

.home-slide-content .pro-showcase-item:hover .showcase-item-tt {
    color: #ffffff;
}

.more-pro-btn {
    display: inline-block;
    margin-top: 38px;
    width: 267px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    background-color: #ffffff;
    border-radius: 33px;
    font-size: 16px;
    color: #333333;
}

.home-slide-content .strength-showcase {
    position: relative;
    width: 100%;
    height: 508px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home-slide-content .strength-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.home-slide-content .strength-info {
    position: relative;
    height: 242px;
    width: 0;
}

.home-slide-content .strength-info-bg {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    box-shadow: unset;
    outline: unset;
}

.home-slide-content .strength-info-bg .strength-info-bg-top {
    height: 30px;
    width: 100%;
    background: linear-gradient(to bottom left, transparent 49%, var(--yellow-color) 51%, var(--yellow-color) 100%);
}

.home-slide-content .strength-info-bg .strength-info-bg-content {
    background-color: var(--yellow-color);
}

.home-slide-content .strength-info-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 30px 20px 20px 20px;
}

.home-slide-content .strength-info-content .tt {
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    color: #333333;
    letter-spacing: 1px;
    height: 40px;
    overflow: hidden;
}

.home-slide-content .strength-info-content .s-content {
    font-size: 16px;
    color: #333333;
    line-height: 2;
    height: calc(5 * 32px);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}

.home-slide-content .strength-item {
    cursor: pointer;
    width: 238px;
    height: 158px;
    background-color: rgba(0, 0, 0, 0.6);
}

.home-slide-content .strength-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.home-slide-content .strength-item .icon {
    filter: brightness(1);
    width: 42px;
    height: 42px;
    margin-bottom: 5px;
    animation-delay: 1s !important;
    animation: fadeInDown;
    animation-duration: 2s;
}

.home-slide-content .strength-item .tt {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    animation-delay: 1s !important;
    animation: fadeInUp;
    animation-duration: 2s;
}

.home-slide-content .strength-item.activated {
    background-color: var(--yellow-color);
}

.home-slide-content .strength-item.activated .icon {
    filter: brightness(0);
}

.home-slide-content .strength-item.activated .tt {
    color: #333333;
}

.home-slide-content .news-left {
    display:inline-block;
    width: 630px;
}

.home-slide-content .news-left img {
    width: 100%;
    height: 368px;
    display: inline-block;
    object-fit: cover;
}

.home-slide-content .news-left .news-info {
    background-color: #ffffff;
    padding: 20px 50px;
    margin-top: 10px;
}

.home-slide-content .news-left .tt {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    word-break: break-all;
}

.home-slide-content .news-left .sub-tt {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 25px;
    font-size: 16px;
    color: #000000;
    text-align: center;
    word-break: break-all;
}

.home-slide-content .news-right {
    margin-left: 19px;
    width: 0px;
}

.home-slide-content .news-right .news-item {
    background-color: #ffffff;
    padding: 10px 35px;
}

.home-slide-content .news-right .news-item:not(:last-child) {
    margin-bottom: 15px;
}

.home-slide-content .news-right .news-date {
    margin-right: 25px;
}

.home-slide-content .news-right .news-date .day {
    font-size: 40px;
    line-height: 51px;
    letter-spacing: 3px;
    color: #000000;
    font-weight: bold;
    text-align: center;
}

.home-slide-content .news-right .news-date .month {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #000000;
    text-align: center;
}

.home-slide-content .news-right .news-info {
    padding: 10px 0 10px 25px;
    border-left: 2px solid var(--border-color);
    width: 0px;
}

.home-slide-content .news-right .news-info .tt {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    line-height: 44px;
    font-weight: bold;
    color: #000000;
    word-break: break-all;
}

.home-slide-content .news-right .news-info .sub-tt {
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 25px;
    font-size: 16px;
    color: #000000;
    word-break: break-all;
}

.contact-left {
    background-color: rgba(242, 200, 24, 0.9);
    padding: 70px 30px 20px;
}

.contact-right {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 70px 30px 20px;
}

.contact-box{
    width:100%;
}

.contact-box .contact-slogan .slogan-tt {
    font-size: 37px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 58px;
    letter-spacing: 0px;
    color: #333333;
    text-align: center;
}

.contact-box .contact-slogan .slogan-sub-tt {
    font-size: 27px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #333333;
    text-align: center;
}

.contact-box .qrcode-pane {
    margin-top: 50px;
}

.contact-box .qrcode-pane .qrcode-box img {
    display: inline-block;
    width: 176px;
    height: 176px;
    object-fit: contain;
}

.contact-box .qrcode-pane .qrcode-box .tt {
    font-size: 16px;
    line-height: 58px;
    letter-spacing: 0px;
    color: #333333;
    text-align: center;
    white-space: nowrap;
    text-overflow: clip;
    overflow: hidden;
}

.contact-box .contact-right .header .tt {
    position: relative;
    font-size: 45px;
    font-weight: bold;
    line-height: 61px;
    height: 61px;
    color: #000000;
    text-align: center;
}

.contact-box .contact-right .header .tt img {
    position: absolute;
    right: 10px;
    top: -15px;
    z-index: 1;
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.contact-box .contact-right .header .sub-tt {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
    color: #000000;
    line-height: 32px;
    text-align: center;
}

.contact-box .contact-right .contact-info {
    width: 100%;
}

.contact-box .contact-right .contact-info-box {
    position: relative;
    width: 0;
    margin: 60px 0 40px;
    padding: 10px 0;
}

.contact-box .contact-right .contact-info-box:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 131px;
    width: 100%;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 1;
}

.contact-box .contact-info-box img {
    width: 44px;
    height: 44px;
    display: inline-block;
    object-fit: contain;
    margin-bottom: 40px;
}

.contact-box .contact-info-box .lb {
    font-size: 20px;
    line-height: 38px;
    color: #000000;
    text-align: center;
    margin-bottom: 8px;
}

.contact-box .contact-info-box .vl {
    font-size: 28px;
    line-height: 38px;
    color: var(--theme-color);
    text-align: center;
    word-break: break-all;
    font-weight: bold;
}

.contact-box .contact-info-box .vls {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    text-align: center;
    padding: 0 30px;
    word-break: break-all;
}
.contact-box .business-bar{
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    width:100%;
}
.contact-box .business-bar .lb{
    font-size:16px;
    color:#333;
    font-weight: bold;
    line-height:30px;
}
.contact-box .business-bar .box-pane{
    font-size:16px;
    color:#333333;
    line-height:30px;
}
.contact-box .business-bar .box-pane a{
    position:relative;
    font-size:16px;
    color:#333333;
    display:inline-block;
    padding:0 8px;
}


.contact-box .contact-footer {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    text-align: center;
}

/*左侧菜单导航*/
.left-menu{
    width:300px;
    box-sizing: border-box;
}
.left-menu .menu-box{
    width:100%;
    box-sizing: border-box;
    border:1px solid var(--border-color);
    background-color:#ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}
.left-menu .menu-box:not(:first-child){
    margin-top:20px;
}
.left-menu .menu-box .left-menu-tt{
    height:80px;
    line-height: 80px;
    text-align: left;
    color:#ffffff;
    font-size:20px;
    padding:0 24px;
    background-color:var(--theme-color);
    border-bottom:1px solid var(--border-color);
    box-shadow: 1px 1px 6px var(--shadow-color);
}
.left-menu .left-menu-box-content{
    width:100%;
    box-sizing: border-box;
    padding:0 20px;
}
.left-menu .left-menu-ct-content{
    padding:20px 20px;
}

.left-menu .menu-box .left-menu-item{
    position: relative;
    height:80px;
    line-height: 80px;
    text-align: left;
    font-size:18px;
    color:#666666;
    white-space: nowrap;
    text-overflow: clip;
    overflow: hidden;
    display:block;
    padding-left:4px;
}
.left-menu .menu-box .left-menu-item:after{
    content: "";
    position: absolute;
    right:0;
    top:25px;
    background-image: url(../images/arrow_right.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width:20px;
    height:22px;
    z-index:1;
}
.left-menu .menu-box .left-menu-item:hover:after{
    background-image: url(../images/arrow_right_on.png);
}

.left-menu .menu-box .left-menu-item:hover{
    color:var(--theme-color);
}

.left-menu .menu-box .left-menu-item:not(:last-child){
    border-bottom:1px solid var(--border-color);
}
.left-menu .ct-item{
}
.left-menu .ct-item .lb{
    width:70px;
    text-align: justify;
    text-align-last: justify;
    font-size:16px;
    color:#333333;
    line-height: 2;
}
.left-menu .ct-item .cpy-name,.left-menu .ct-item .vl{
    font-size:16px;
    color:#333333;
    line-height: 2;
}
/*商盟成员*/
.business-user{
    border-top:1px solid var(--border-color);
    width:100%;
}
.business-user .lb{
    font-size:16px;
    color:#333;
    font-weight: bold;
    line-height: 60px;
}
.business-user .box-pane{
    font-size:16px;
    color:#333333;
    line-height: 60px;
}
.business-user .box-pane a{
    position:relative;
    font-size:16px;
    color:#333333;
    display:inline-block;
    padding:0 8px;
}

/*底部导航样式*/
.footer {
    border-top: 1px solid var(--border-color);
    background-color:var(--yellow-color);
}
.footer-nav{
    border-bottom:1px solid var(--border-color);
    height:100px;
}
.footer-nav .container{
    height:100%;
}
.footer-nav .container >*{
    height:100%;
}
.footer-nav a{
    display:inline-block;
    color:#000000;
    flex-shrink: 0;
    font-size:16px;
}
.footer-nav a:hover{
    color:#ffffff;
}
.footer-nav .contact-phone .icon{
    width: 50px;
    height:50px;
    object-fit: contain;
    margin-right:20px;
}
.footer-nav .contact-phone .phone{
    font-size:38px;
    font-weight: bold;
    letter-spacing: 2px;
    color:var(--theme-color);
}
.footer .company-pane{
    padding:40px 0;
}
.footer .logo{
    width:150px;
}

.footer .company-info{
}
.footer .company-info .info-item，.footer .company-info .info-item a{
    color: #000;
    font-size: 18px;
    line-height: 34px;
    text-align: justify;
}

.footer .company-info .info-item{
    color: #000;
    font-size: 18px;
    line-height: 34px;
}
.footer .company-info .info-item .lb{
    text-align: justify;
    text-align-last: justify;
    width:80px;
}
.footer .company-info .info-item .vl{
    width:0;
    flex-basis: 0;
}
.footer .qrcode-pane{
    border:1px solid var(--border-color);
}
.footer .qrcode-pane .qrcode-box:last-child{
    border-left:1px solid var(--border-color);
}
.footer  .qrcode-box{
    padding:15px;
}
.footer .qrcode{
    width:114px;
    height:114px;
    object-fit: contain;
    margin-bottom:10px;
}
.footer  .qrcode-box .tt{
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}
.footer .copyright-pane{
    border-top:1px solid var(--border-color);
    padding:10px 0;
}
.footer .copyright-pane,.footer .copyright-pane a{
    font-size:14px;
    line-height: 2;
    color:rgba(0,0,0,0.4);
}

.pagination{
    display:block;
    text-align:center;
    margin-top:50px;
}
.pagination ul{
    margin:0 auto;
}

.pagination ul li{
    display:inline-block;
    background-color:#ffffff;
    border-radius: 2px;
    overflow: hidden;
    height:40px;
    padding:0 14px;
    line-height: 40px;
    text-align: center;
    color:#333333;
    font-size:16px;
}
.pagination ul li a{
    display:block;
    width:100%;
    height:100%;
    text-align: center;
    color:#333333;
    font-size:16px;
}
.pagination ul .pages_solid{
    background-color:unset;
}
.pagination ul .pages_hollow:hover{
    background-color:var(--theme-color);
}
.pagination ul .pages_hollow:hover a{
    color:#ffffff;
}

.pagination ul li:not(:first-child){
    margin-left:20px;
}

/*联系我们*/
.contact-page{
    margin:50px 0;
}
.contact-page .left-pane{
    padding:50px;
    background-color:var(--theme-color);
}

.contact-page .addr-map{
    width:500px;
}
.contact-page .hot-line{
    padding-bottom:30px;
    border-bottom:1px solid #ffffff;
}
.contact-page .hot-line .icon{
    width:64px;
    height:64px;
    object-fit: contain;
    margin-right:10px;
}

.contact-page .hot-line-tt{
    color:#ffffff;
    font-size:14px;
    line-height: 20px;
}
.contact-page .hot-line-cc{
    color:#ffffff;
    font-size:28px;
    line-height: 40px;
}

.contact-page .contact-box{
    margin-top:30px;
}

.contact-page .contact-box .icon{
    width:64px;
    height:64px;
    object-fit: contain;
    margin-right:10px;
}

.contact-page  .ct-item{
    font-size:18px;
    line-height: 2;
    color:#fff;
}

.contact-page  .ct-item .lb{
    width:80px;
    text-align: justify;
    text-align-last: justify;
}

.contact-page .ct-item .vl{
    width:0;
}

.contact-page .ct-item .cpy-name{
    font-size:18px;
    line-height: 2;
    color:#fff;
}

.contact-page .right-pane{
    min-height: 405px;
    padding:0;
}


/*产品中心列表 新闻中心列表*/
.tab-page{
    margin:50px 0;
}
.tab-page .tab-item{
    font-size:16px;
    color:#333333;
    height:50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    overflow: hidden;
    background-color:#ffffff;
    width:160px;
    border:1px solid var(--border-color);
    box-shadow: 1px 1px 6px var(--shadow-color);
}
.tab-page .tab-item:hover{
    background-color:var(--theme-color);
    color:#ffffff;
}

.tab-page .tab-content{
    margin-top:50px;
    width:100%;
}
/*产品列表项*/
.tab-page .pro-item{
    border-radius: 5px;
    overflow: hidden;
    padding:10px 10px 30px;
    background:#ffffff;
    width:calc( (100% - 90px) / 3);
    margin-bottom:30px;
    border:1px solid var(--border-color);
    box-shadow: 1px 1px 6px var(--shadow-color);
    margin-right:30px;
}


.tab-page .pro-item:nth-child(3n){
    margin-right:0px;
}
.tab-page .pro-item .pro-pic{
    display:block;
    width:100%;
}
.tab-page .pro-item .pro-pic img{
    display:block;
    width:100%;
    height:270px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 1px var(--shadow-color);
}
.tab-page .pro-item .tt{
    font-size:18px;
    display:block;
    color:#333333;
    line-height:22px;
    height:22px;
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
    margin-top:15px;
}
.tab-page .pro-item .sub-tt{
    font-size:14px;
    color:#999999;
    line-height: 22px;
    height: calc(2 * 22px);
    overflow: hidden;
    text-indent: 2em;
    margin-top:12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}

.tab-page .pro-item-footer{
    margin-top:20px;
    font-size:14px;
    color:#333333;
}

/*新闻列表项*/
.tab-page .news-item{
    width:100%;
    display:block;
    background-color:#ffffff;
    border-radius: 5px;
    overflow: hidden;
    border:1px solid var(--border-color);
    box-shadow: 1px 1px 6px var(--shadow-color);
}
.tab-page .news-item:not(:last-child){
    margin-bottom:20px;
}
.tab-page .news-item img{
    width:220px;
    height:165px;
    object-fit: cover;
}

.tab-page .news-item .news-item-info{
    padding:10px 20px;
    width:0;
}

.tab-page .news-item .tt{
    font-size:20px;
    line-height:40px;
    height:40px;
    color:#333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.tab-page .news-item .create-time{
    font-size:14px;
    color:#999999;
    margin:10px 0;
}

.tab-page .news-item .sub-tt{
    font-size:14px;
    color:#666666;
    line-height: 30px;
    height: calc(2 * 30px);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}
.tab-page .news-item:hover{
    border:1px solid var(--theme-color);
}


/*产品详情,新闻详情页*/
.info-page{
    padding:50px 0;
    background-color:#ffffff;
}
.info-page .info-header{
    border-bottom:1px solid var(--border-color);
    padding-bottom:12px;
    text-align: right;
}
.info-page .pre-tt{
    font-size:20px;
    color:#333333;
}
.info-page .b-addr,.info-page .b-addr a{
    font-size:14px;
    color:#999999;
}
.info-page .title{
    font-size:24px;
    color:#000000;
    font-weight: bold;
    text-align: center;
    margin-top:50px;
}
.info-page .sub-bar{
    text-align: center;
    color:#999999;
    font-size:14px;
    margin:20px 0 40px;
}
.info-page .sub-bar,.info-page .sub-bar a{
    text-align: center;
    color:#999999;
    font-size:14px;
}
.info-page .pro-box{
    margin:0 !important;
    border:1px solid var(--border-color);
}
.info-page .pro-box .pro-info{
    padding-left:30px;
}
.info-page .pro-box .pro-title{
    font-size:26px;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    white-space: nowrap;
    color:#000000;
    margin-top:50px;
}
.info-page .pro-box .sub-title{
    position: relative;
    box-sizing: content-box;
    font-size:16px;
    color:#999999;
    line-height: 28px;
    height:28px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    white-space: nowrap;
    padding-bottom:15px;
}
.info-page .pro-box .sub-title:after{
    content:"";
    position: absolute;
    height:3px;
    bottom:0;
    left:0;
    width:40px;
    background-color:var(--theme-color);
    z-index: 1;
}
.info-page .pro-box .meno{
    color:#666666;
    font-size:16px;
    line-height: 32px;
    padding-top:30px;
    border-top:1px solid var(--border-color);
    height: calc(3 * 32px + 30px);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
}
.info-page .pro-box .send-msg{
    margin:30px 0 10px;
}

.info-page .pro-box .send-msg a,.send-msg a:hover{
    width:150px;
    text-align: center;
    height:34px;
    line-height: 34px;
    box-sizing: border-box;
    background-color:var(--theme-color);
    color:#ffffff;
    font-size:18px;
    border-radius: 34px;
}
.info-page .pro-box .send-msg img{
    width:28px;
    height:28px;
    object-fit: contain;
    margin-right:10px;
}
.info-page .pro-box .pro-info-footer{
    padding:20px 0;
    border-top:1px solid var(--border-color);
}
.info-page .pro-box .pro-info-footer .icon{
    width:40px;
    height:40px;
    object-fit: contain;
    margin-right:10px;
}
.info-page .pro-box .pro-info-footer .lb{
    font-size:16px;
    color:#666;
}
.info-page .pro-box .pro-info-footer .phone{
    color:#333333;
    font-size:26px;
    font-weight: bold;
}

.content-header{
    background-color:var(--theme-color);
    color:#ffffff;
    font-size:18px;
    height:70px;
    line-height: 70px;
    padding:0 10px;
    margin-top:10px;
    box-shadow: 0 0 2px var(--shadow-color);
}

.info-page .content{
    margin-top: 10px;
    font-size:16px;
    color:#333333;
    line-height: 2;
}
.info-page .content img{
    width:100%;
}
.info-page .footer-bar{
    margin-top:40px;
}
.info-page .footer-bar >*,.info-page .footer-bar a{
    color:#333;
    font-size:14px;
    line-height: 40px;
}
.info-page .relate-msg-pane{
    margin-top:20px;
}
.info-page .relate-msg-header{
    padding-bottom:12px;
    font-size:16px;
    color:#333;
    border-bottom:1px solid var(--border-color);
}
.info-page .relate-msg-header .icon{
    width:20px;
    height:15px;
    object-fit: contain;
    margin-right:10px;
}

.info-page .relate-msg-content{
    padding:20px 0;
}

.info-page .relate-msg-content .pro-box{
    box-sizing: border-box;
    width:calc( (100% - 15px) / 4 );
    border-radius: 4px;
    overflow: hidden;
    border:1px solid var(--border-color);
    box-shadow: 1px 1px 6px var(--shadow-color);
    background-color:#ffffff;
    padding:5px;
}

.info-page .relate-msg-content .pro-box:hover{

}

.info-page .relate-msg-content .pro-box:hover .tt{

}

.info-page .relate-msg-content .pro-box img{
    width:100%;
    height:170px;
    object-fit: cover;
    box-shadow: 0 0 1px var(--shadow-color);
}
.info-page .relate-msg-content .pro-box .tt{
    font-size:16px;
    color:#666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 20px;
    height: 20px;
    margin:10px 0;
    text-align: center;
}

.info-page .relate-msg-content .pro-box:not(:last-child){
    margin-right:5px;
}

.info-page .relate-msg-content .pro-box:hover .tt{
    color:var(--theme-color);
}

.info-page .relate-msg-content .news-item{
    display:block;
    box-sizing: border-box;
    width:calc((100% - 15px) /2);
}

.info-page .relate-msg-content .news-item:nth-child(2n){
    margin-left:15px;
}

.info-page .relate-msg-content .news-item .tt{
    color:#333;
    font-size:16px;
    line-height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    height:40px;
    word-break: break-all;
    overflow: hidden;
}
.info-page .relate-msg-content .news-item .create-time{
    color:#333;
    font-size:16px;
    line-height: 20px;
    margin-left:10px;
}

.info-page .relate-msg-content .news-item:hover .tt{
    color:var(--theme-color);
}
.info-page .relate-msg-content .news-item:hover .create-time{
    color:var(--theme-color);
}

/*关于我们*/
.tab-page .tab-content .info-title{
    font-size:28px;
    font-weight: bold;
    text-align: center;
}
.tab-page .tab-content .info-content{
    font-size:16px;
    line-height: 2;
    color:#333333;
    text-indent: 2em;
    margin-top:30px;
    background-color:#ffffff;
    padding:20px;
}
/*sitemap*/
.site-map-box{
    margin-bottom:30px;
}
.site-map-box .tt{
    display:block;
    line-height:2;
    font-size:16px;
    font-weight: bold;
    color:#333333;
}
.site-map-box .tt:hover{
    color:var(--theme-color);
}
.site-map-box .content{
    margin-top:10px;
}
.site-map-box .box-item{
    display:inline-block;
    vertical-align: middle;
    font-size:16px;
    line-height: 2;
    color:#333333;
    padding:0 20px;
}
.site-map-box .box-item:hover{
    color:var(--theme-color);
}
.site-map-box .box-item:not(:last-child){
    border-right:1px solid var(--border-color);
}
